home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / include / gsl / gsl_combination.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-20  |  2.8 KB  |  97 lines

  1. /* combination/gsl_combination.h
  2.  * based on permutation/gsl_permutation.h by Brian Gough
  3.  * 
  4.  * Copyright (C) 2001 Szymon Jaroszewicz
  5.  * 
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or (at
  9.  * your option) any later version.
  10.  * 
  11.  * This program is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  * 
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  */
  20.  
  21. #ifndef __GSL_COMBINATION_H__
  22. #define __GSL_COMBINATION_H__
  23.  
  24. #include <stdlib.h>
  25. #include <gsl/gsl_errno.h>
  26.  
  27. #undef __BEGIN_DECLS
  28. #undef __END_DECLS
  29. #ifdef __cplusplus
  30. # define __BEGIN_DECLS extern "C" {
  31. # define __END_DECLS }
  32. #else
  33. # define __BEGIN_DECLS /* empty */
  34. # define __END_DECLS /* empty */
  35. #endif
  36.  
  37. __BEGIN_DECLS
  38.  
  39. struct gsl_combination_struct
  40. {
  41.   size_t n;
  42.   size_t k;
  43.   size_t *data;
  44. };
  45.  
  46. typedef struct gsl_combination_struct gsl_combination;
  47.  
  48. gsl_combination *gsl_combination_alloc (const size_t n, const size_t k);
  49. gsl_combination *gsl_combination_calloc (const size_t n, const size_t k);
  50. void gsl_combination_init_first (gsl_combination * c);
  51. void gsl_combination_init_last (gsl_combination * c);
  52. void gsl_combination_free (gsl_combination * c);
  53.  
  54. int gsl_combination_fread (FILE * stream, gsl_combination * c);
  55. int gsl_combination_fwrite (FILE * stream, const gsl_combination * c);
  56. int gsl_combination_fscanf (FILE * stream, gsl_combination * c);
  57. int gsl_combination_fprintf (FILE * stream, const gsl_combination * c, const char *format);
  58.  
  59. size_t gsl_combination_n (const gsl_combination * c);
  60. size_t gsl_combination_k (const gsl_combination * c);
  61. size_t * gsl_combination_data (const gsl_combination * c);
  62.  
  63. size_t gsl_combination_get (const gsl_combination * c, const size_t i);
  64.  
  65. int gsl_combination_valid (gsl_combination * c);
  66. int gsl_combination_next (gsl_combination * c);
  67. int gsl_combination_prev (gsl_combination * c);
  68.  
  69. #ifdef GSL_EXPORTS
  70. __declspec(dllexport) int gsl_check_range;
  71. #elif defined(GSL_IMPORTS)
  72. __declspec(dllimport) int gsl_check_range;
  73. #else
  74. extern int gsl_check_range;
  75. #endif
  76.  
  77. #ifdef HAVE_INLINE
  78.  
  79. extern inline
  80. size_t
  81. gsl_combination_get (const gsl_combination * c, const size_t i)
  82. {
  83. #ifndef GSL_RANGE_CHECK_OFF
  84.   if (i >= c->k)
  85.     {
  86.       GSL_ERROR_VAL ("index out of range", GSL_EINVAL, 0);
  87.     }
  88. #endif
  89.   return c->data[i];
  90. }
  91.  
  92. #endif /* HAVE_INLINE */
  93.  
  94. __END_DECLS
  95.  
  96. #endif /* __GSL_COMBINATION_H__ */
  97.